davidzollo commented on issue #8388:
URL: https://github.com/apache/seatunnel/issues/8388#issuecomment-3723837414

   Hbase to Hbase
   
   ```
   env {  
     parallelism = 1  
     job.mode = "BATCH"  
   }  
   
   source {  
     Hbase {  
       zookeeper_quorum = "zookeeper1,zookeeper2,zookeeper3"  
       table = "test_binary_source"  
       is_binary_rowkey = true
       caching = 100000
       batch = 100  
       cache_blocks = true 
   
       # HBase security configuration  
       hbase_extra_config = {
         "hbase.security.authentication" = "kerberos"
         "hadoop.security.authentication" = "kerberos"      
         "hbase.master.kerberos.principal" = "hbase/[email protected]"
         "hbase.regionserver.kerberos.principal" = "hbase/[email protected]"
         "hbase.rpc.protection" = "authentication"
         "hbase.zookeeper.useSasl" = "false"
       }
         
       schema = {  
         columns = [  
           {  
             name = "rowkey"  
             type = bytes  
           },  
           {  
             name = "cf:data"  
             type = string  
           }  
         ]  
       } 
     }    
   }  
   
   sink {  
     Hbase {  
       zookeeper_quorum = "zookeeper1,zookeeper2,zookeeper3"  
       table = "test_binary_target"  
       rowkey_column = ["rowkey"]  
       family_name {  
         all_columns = "cf"  
       }
       # HBase security configuration  
       hbase_extra_config = {
         "hbase.security.authentication" = "kerberos"
         "hadoop.security.authentication" = "kerberos"
     
         "hbase.master.kerberos.principal" = "hbase/[email protected]"
         "hbase.regionserver.kerberos.principal" = "hbase/[email protected]"
         
         "hbase.rpc.protection" = "authentication"
         "hbase.zookeeper.useSasl" = "false"
       }
     }  
   }
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to