531651225 commented on code in PR #2499:
URL: 
https://github.com/apache/incubator-seatunnel/pull/2499#discussion_r956750695


##########
docs/en/connector-v2/sink/Phoenix.md:
##########
@@ -0,0 +1,41 @@
+# Phoenix
+
+> Phoenix sink connector
+
+## Description
+Write Phoenix data through [Jdbc connector](Jdbc.md).
+Support Batch mode and Streaming mode. The tested Phoenix version is 4.xx and 
5.xx
+On the underlying implementation, through the jdbc driver of Phoenix, execute 
the upsert statement to write data to HBase.
+Two ways of connecting Phoenix with Java JDBC. One is to connect to zookeeper 
through JDBC, and the other is to connect to queryserver through JDBC thin 
client.
+
+> Tips: By default, the (thin) driver jar is used. If you want to use the 
(thick) driver  or other versions of Phoenix (thin) driver, you need to 
recompile the jdbc connector module
+
+> Tips: Not support exactly-once semantics (XA transaction is not yet 
supported in Greenplum database).
+
+## Options
+
+### driver [string]
+if you use  phoenix (thick) driver the value is  
`org.apache.phoenix.jdbc.PhoenixDriver` or you use (thin) driver  the value is 
`org.apache.phoenix.queryserver.client.Driver`
+
+### url [string]
+if you use  phoenix (thick) driver the value is  
`jdbc:phoenix:localhost:2182/hbase` or you use (thin) driver  the value is 
`jdbc:phoenix:thin:url=http://localhost:8765;serialization=PROTOBUF`

Review Comment:
   > update `if you use<space><space>phoenix` to `if you use<space>phoenix`
   
   thanks,done
   



-- 
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