I have set min_pool_size to 100 in mongoid.yml but in mongo when running db.serverStatus().connections i only get 30. Is there a way to check how many connections I have in pool?
Ruby on Rails, Can I get the current count of connections in Mongoid pool?
1.2k Views Asked by user793789 At
2
There are 2 best solutions below
Related Questions in RUBY-ON-RAILS
- Rails HABTM: Select everything a that a record 'has'
- Best way to make an HABTM association via console
- dynamically create an ical / ics file from a rails model
- Ruby destroy is not working? Or objects still present?
- NoMethodError: undefined method `update_average_rating' for nil:NilClass
- Select results where joined table contains records with an attribute, but without another
- Showing posts only created when boolean was true
- Ruby on rails and HAML - Print a hash with background color
- How can I monitor an endpoint's status with Ruby?
- How to create dynamic pages without form_for helper in Rails?
- Rails 4.2 jQuery loads only after refresh
- "Access Denied" - User's Permissions to S3 Bucket
- ActiveRecord, Rails 4: has_many :through with scoped conditions failure
- Rails - formatting a list of options
- Rails - Ajax do not work properly on production server
Related Questions in MONGODB
- Meteor MapReduce Package Error: A method named is already defined
- Token based authorization in nodejs/ExpressJs and Angular(Single Page Application)
- Big data with spatial queries/indexing
- How to recover from losing all your /data/db
- What are the benefits of using the fields option when querying in Meteor
- Node JS Async Response
- mongoose get property from nested schema after `group`
- What to use for subdocuments ID's in MongoDB?
- ORM Code First versa Database First in Production
- How to profile a Yii2 based API?
- get length of embedded document in mongoDB with jade
- Architecture: Multiple Mongo databases+connections vs multiple collections with Express
- Why are numbers being inserted into MongoDB incorrectly?
- hibernate ogm mongo db, how to get count of collection?
- C++ Mongodb driver, not working
Related Questions in MONGOID
- Query a deeply nested mongo
- Reference SQL table to the MongoDB collection in Ruby on Rails application
- Conditional default value in Rails (Mongoid) model
- rails multiple .each issue
- mongoid geo_near with max_distance
- Can't clear Mongo DB while running test
- mongoid 4 wrong number of arguments (3 for 1) for scope
- How can I make Mongoid ignore argument attributes that are not set in model the when creating/updating an object?
- deploy rails mongo app to heroku
- Find Mongoid geospacial circles that contain a point
- Ruby on Rails - How to delegate error messages from nested model
- Could not connect to a primary node for replica set #<Moped::Cluster[<Moped::Node resolved_address="10.10.4.131:27017">]
- Updating a document that has both belongs_to and has_many associations
- Mongoid can not query non-latin attributes
- Ruby on Rails Mongodb Mongoid virtual memory usage
Related Questions in MONGOID6
- Rails - framework for sending test emails and disable DB write
- Rails force to_param to return something even when not persisted
- Mongoid, stranger mongodb query when uses belongs_to relation
- Mongoid 6.3 where in query not working
- mongoid 'with' option behavior changed with >6.0
- Mongoid - Detect if there are results on the next page
- Mongoid field hash as Struct
- Rails Puma Server: Undefined `extract_multipart' or `before_create' on logout action
- Rails 6 + Mongoid 6.1.0 not compatible versions for gem "activemodel"
- how to delete a key from mongoid hash field
- Mongoid 6, Rails 5, HABTM "unpermitted parmeter"
- Mongoid aggregation with conditions
- Mongoid find_by any language for a localized field
- FactoryGirl.create does not work while upgrading mongoid version from 5 to 6. Below is the issue I run into while running rspec test
- manually construct associations to get around the eager loading limitations with mongoid?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Setting min_pool_size in Ruby driver (and consequently Mongoid) does not mean that many network connections are actually created. Setting min_pool_size creates that many driver connection objects, but they are connected to the cluster on demand. This behavior has been fixed in version 2.11.0 of the driver - see https://jira.mongodb.org/browse/RUBY-1605.
To find out how many sockets are actually opened to a given server, first obtain its connection pool:
Then look at the sockets in the connections:
Each server has one additional connection/socket opened to it for monitoring purposes which is not application-accessible.
Note that all of the code posted above (
next_primary, poking into connection sockets, etc.) is not part of the driver public API and may change at any time.