Moving from elasticsearch single node to cluster #1078
Replies: 1 comment 2 replies
-
|
@lcia-projects 1. Can T-Pot Hive be converted from a single-node Elasticsearch deployment to a cluster?Yes, but it would require manually customizing the Elasticsearch deployment. T-Pot ships with a single Elasticsearch node as part of its Docker Compose stack. The officially documented scaling model is Hive + Sensor, where additional hosts run honeypots and forward logs to the Hive—not multiple Elasticsearch data nodes. I couldn't find documentation describing a supported multi-node Elasticsearch cluster within T-Pot itself. :contentReference[oaicite:0]{index=0} So, from what I can tell, you'd be maintaining a custom Elasticsearch deployment alongside T-Pot. 2. Are
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
i'm pretty familiar with elasticsearch 8.. less familiar with docker. I need to build a es cluster with a t-pot hive install.
i'd like to have the tpot hive install on a fast ssd drive, but also have a couple of es nodes with larger slower spinning drives for long term storage of logs.
so.. in theory i'd like it to look something like this:
---- Main Tpot22-Hive Install on ssd drive(node 1, master data node) (hot node)
---- Elasticsearch 8 data node on ssd drive (master capable,data node 2) (hot node)
---- Elasticsearch 8 data node on large spinning disk (data node 3) (warm node)
---- Elasticsearch 8 data node on large spinning disk (data node 4) (warm node)
ILM policy to move data from hot nodes to warm nodes after 60 days.
my questions:
Beta Was this translation helpful? Give feedback.
All reactions