Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ If you want to turn off the batch data segment announcer, you can add a property

|Property|Description|Default|
|--------|-----------|-------|
|`druid.announcer.skipSegmentAnnouncementOnZk`|Skip announcing segments to ZooKeeper. Note that the batch server view will not work if this is set to true.|false|
|`druid.announcer.skipSegmentAnnouncementOnZk`|Skip announcing segments to ZooKeeper. Note that the batch server view will not work if this is set to true.|true|

### JavaScript

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class BatchDataSegmentAnnouncerConfig
private boolean skipDimensionsAndMetrics = false;

@JsonProperty
private boolean skipSegmentAnnouncementOnZk = false;
private boolean skipSegmentAnnouncementOnZk = true;

public int getSegmentsPerNode()
{
Expand Down
Loading