You can disable the entire replication feature by taking the
replication table offline.
(in the shell: `offline accumulo.replication`)
(in Java/jshell:
`clientOrConnector.tableOperations().offline("accumulo.replication");`)This won't necessarily terminate any background threads/resources started by a tserver to handle replication, though. You may need to restart for that. On Tue, Jul 20, 2021 at 1:31 PM <[email protected]> wrote: > > See: https://accumulo.apache.org/docs/2.x/administration/replication > > > > Replication should be controlled using the accumulo shell config command. > > > > To see the current system replication configuration: (-f provides a filter > and will show only properties that contain replication in the name) > > > > > config -f replication > > > > It may be as simple as setting the system property table.replication to false. > > > > > config -s table.replication=false > > > > The per-table replication configuration can be see using: > > > > > config -t [your_table] -f table.replication (or just use -f replication > > to properties that contain replication) > > > > And disabled (if true) with: > > > > > config -t my_table -s table.replication=false. > > > > From: Shailesh Ligade <[email protected]> > Sent: Tuesday, July 20, 2021 1:01 PM > To: [email protected] > Subject: How to stop accumulo replication > > > > Hello, > > > > Is there a way to find out which tables are getting replicated? How can I > stop entire replication process? > > > > -S > >
