summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* rabbit:status/0: include server version informationMichael Klishin2019-04-141-0/+2
|
* rabbit:status/0: include node's data directoryMichael Klishin2019-04-141-1/+2
| | | | Part of rabbitmq/rabbitmq-cli#340.
* rabbit:status/0: new section on basic (topology) totalsMichael Klishin2019-04-131-1/+12
| | | | Per suggestion from @gerhard in rabbitmq/rabbitmq-cli#341
* Introduce rabbit_vhost:count/0Michael Klishin2019-04-131-1/+5
|
* rabbit:status/0: add config file, log file and enabled plugin infoMichael Klishin2019-04-131-1/+5
| | | | Part of rabbitmq/rabbitmq-cli#340
* rabbit:alarms/0: return more information about the alarmMichael Klishin2019-04-121-1/+1
| | | | | | Let the new status command to do the filtering and formatting. Part of rabbitmq/rabbitmq-cli#340.
* FormattingMichael Klishin2019-04-111-1/+1
|
* rabbit:listeners/0: return full listener recordsMichael Klishin2019-04-111-6/+2
| | | | | | for CLI tools to format them. References rabbitmq/rabbitmq-cli#340.
* Merge pull request #1976 from rabbitmq/rabbitmq-server-1973-2Michael Klishin2019-04-112-6/+27
|\ | | | | Follow up to #1973 - ensure amq.rabbitmq.log exchange is declared early
| * Add code to declare amq.rabbitmq.log exchange immediately after the / vhost ↵Luke Bakken2019-04-102-5/+26
| | | | | | | | is added or recovered
| * amq.rabbitmq.log really should be an internal exchangeLuke Bakken2019-04-101-1/+1
| | | | | | | | Part of #1973
* | Merge pull request #1978 from rabbitmq/calculate-quorum-memoryKarl Nilsson2019-04-111-1/+1
|\ \ | |/ |/| Update quorum queue supervisor for memory calculation
| * Update quorum queue supervisor for memory calculationDiana Corbacho2019-04-111-1/+1
| | | | | | | | [#161752680]
* | Merge pull request #1974 from rabbitmq/rabbitmq-server-1973Luke Bakken2019-04-101-4/+5
|\ \ | | | | | | Make sure amq.rabbitmq.log is accessible to client connections
| * | Reduce duplicationMichael Klishin2019-04-101-1/+1
| | |
| * | Log amq.rabbitmq.log declaration failures as errorsMichael Klishin2019-04-101-1/+1
| | |
| * | Make sure amq.rabbitmq.log is accessible to client connectionsMichael Klishin2019-04-101-3/+4
|/ / | | | | | | | | | | | | | | That is, not an internal exchange. Closes #1973, references #1456. [#165243321]
* | Restore rabbit_connection_tracking_handler:close_connections/3Michael Klishin2019-04-081-0/+6
| | | | | | | | | | | | It is relied on by released 3.7.x versions of rabbitmqctl. References #1971.
* | Merge pull request #1971 from rabbitmq/connection_tracking_processMichael Klishin2019-04-082-85/+147
|\ \ | |/ |/| Handle connection tracking events in a separate process.
| * Handle connection tracking events in a separate process.Daniil Fedotov2019-04-052-85/+147
|/ | | | | | | | | | | | | Connection tracking event handling may involve DB operations and closing of connections (e.g. for vhost deletion). Because gen_event handles all events in the same process - this may cause message accumulation in the rabbit_event process and memory accumulation. Connection tracking process will only receive connection tracking events and all other events will be dropped, freeing the memory. Follow-up to #1722 [#164353033]
* Retry Mnesia tables wait in the `quorum_queue` feature flag migrationJean-Sébastien Pédron2019-04-032-3/+3
| | | | | | | | | Before this patch, the migration function waited once 30 seconds then gave up. This was inconsistent with what the boot process does: wait for 30 seconds, 10 times in a row. Now, we do the same thing in the `quorum_queue` migration function, so that it gives up at the same time as the boot process.
* Merge pull request #1967 from rabbitmq/mk-idempotent-quorum-queue-add-memberMichael Klishin2019-04-022-17/+28
|\ | | | | Quorum queue: make membership changes [more] idempotent
| * Quorum queue; make membership changes [more] idempotentMichael Klishin2019-04-012-17/+28
|/ | | | Per discussion with @kjnilsson.
* Merge pull request #1961 from rabbitmq/rabbitmq-auth-backend-cache-20D Corbacho2019-03-314-16/+23
|\ | | | | Cache vhost access requests using client IP address only
| * Add commentsLuke Bakken2019-03-252-1/+5
| |
| * Keep IP address in tuple formatLuke Bakken2019-03-221-7/+2
| |
| * Finish converting check_vhost_access/3 to new APILuke Bakken2019-03-224-8/+21
| |
| * Modify check_vhost_access/3 to use map of dataLuke Bakken2019-03-222-13/+8
| | | | | | | | Part of rabbitmq/rabbitmq-auth-backend-cache#20
* | Merge pull request #1963 from rabbitmq/rabbitmq-server-1962Michael Klishin2019-03-292-0/+20
|\ \ | | | | | | Follow-up to rabbitmq-server#1962
| * | Rename function to convert forward slashes, use it in another placeLuke Bakken2019-03-252-6/+17
| | |
| * | Merge remote-tracking branch 'gh-1962/master' into rabbitmq-server-1962Luke Bakken2019-03-251-0/+9
| |\ \
| | * | Fix issues with forward slashesClaas Diederichs2019-03-231-0/+9
| | | | | | | | | | | | | | | | Fix issues with forward slashes in RABBITMQ_CONFIG_FILE on windows
* | | | Merge pull request #1960 from ↵Michael Klishin2019-03-292-1/+41
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | rabbitmq/mnesia_use_ram_schema_on_consistency_check Mnesia use ram schema on consistency check
| * \ \ \ Merge branch 'master' into mnesia_use_ram_schema_on_consistency_checkMichael Klishin2019-03-264-165/+546
| |\ \ \ \
| * | | | | Test successfull clustering if there is a garbage schema in the work dirDaniil Fedotov2019-03-221-1/+38
| | | | | |
| * | | | | Use ram schema_location for mnesia consistency checks.Daniil Fedotov2019-03-221-0/+3
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By default mnesia uses opt_disk schema location, which will use a disk schema if there is a directory. This also applies to the autogenerated directory. In some cases if the data directory has an autogenerated schema directory left from previous versions - the node startup will fail. There is no point in reading a schema on consistency check anyway. [#164807008]
* | | | | Merge pull request #1965 from rabbitmq/quorum-queue-node-removal-cleanupD Corbacho2019-03-284-33/+158
|\ \ \ \ \ | |_|/ / / |/| | | | Purge stale node state from quorum queues
| * | | | Purge stale node state from quorum queueskjnilsson2019-03-274-33/+158
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a node is disconnected then removed from the RabbitMQ cluster it is possibly that quorum queues retain some state for this node. This change purges any enqueuer or consumer state for pids relating to nodes that are not in the RabbitMQ cluster. [#164214265]
* | | | Merge pull request #1964 from rabbitmq/fix-no-return-functionMichael Klishin2019-03-261-0/+1
|\ \ \ \ | | | | | | | | | | Add a no_return() type spec to silence a Dialyzer warning
| * | | | Add a no_return() type spec to silence a Dialyzer warningLoïc Hoguin2019-03-261-0/+1
|/ / / /
* | | | Merge pull request #1950 from rabbitmq/rabbit-fifo-bugfixesKarl Nilsson2019-03-263-165/+545
|\ \ \ \ | |/ / / |/| | | Rabbit fifo bug fixes
| * | | Disable test that cannot currently passkjnilsson2019-03-212-29/+25
| | | |
| * | | rabbit_fifo: propery tests for single active consumerkjnilsson2019-03-202-26/+324
| | | | | | | | | | | | | | | | | | | | | | | | | | | | To test send_msg ordering and ensure there never two active consumers at once. [#164691411]
| * | | rabbit_fifo: Ensure checkout is performedkjnilsson2019-03-182-29/+42
| | | | | | | | | | | | | | | | After a down command is processed
| * | | rabbit_fifo bugfixeskjnilsson2019-03-183-112/+185
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Bugfixes around noconnect consumer handling as well as refactoring to make these kinds of errors less likely. [#164691411]
* | | | Merge branch 'masaki-furuta-toggle_disk_monitor'Michael Klishin2019-03-221-1/+14
|\ \ \ \ | |_|/ / |/| | |
| * | | Pattern match in function headsMichael Klishin2019-03-221-8/+8
| | | |
| * | | Merge branch 'toggle_disk_monitor' of ↵Michael Klishin2019-03-221-1/+14
| |\ \ \ |/ / / / | | | | | | | | https://github.com/masaki-furuta/rabbitmq-server into masaki-furuta-toggle_disk_monitor
| * | | Update rabbit_disk_monitor.erlMasaki Furuta2019-03-221-1/+0
| | | | | | | | | | | | Remove unused default value for enabled.
| * | | Debug: Applying patch to disable disk_monitor on the fly by rabbitctl eval.Masaki Furuta2019-03-221-1/+15
| | |/ | |/| | | | | | | | | | | | | | | | To disbale: rabbitmqctl eval 'rabbit_disk_monitor:set_enabled(false).' To re-enable: rabbitmqctl eval 'rabbit_disk_monitor:set_enabled(true).'