You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2019/06/27 17:35:07 UTC

[GitHub] [incubator-shardingsphere] Solomon-8 commented on issue #2620: Using psql connect IndexOutOfBoundsException occur

Solomon-8 commented on issue #2620: Using psql connect IndexOutOfBoundsException occur
URL: https://github.com/apache/incubator-shardingsphere/issues/2620#issuecomment-506440979
 
 
   here is the config file 
   
   server.yaml
   
   ```
   #
   # Licensed to the Apache Software Foundation (ASF) under one or more
   # contributor license agreements.  See the NOTICE file distributed with
   # this work for additional information regarding copyright ownership.
   # The ASF licenses this file to You under the Apache License, Version 2.0
   # (the "License"); you may not use this file except in compliance with
   # the License.  You may obtain a copy of the License at
   #
   #     http://www.apache.org/licenses/LICENSE-2.0
   #
   # Unless required by applicable law or agreed to in writing, software
   # distributed under the License is distributed on an "AS IS" BASIS,
   # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   # See the License for the specific language governing permissions and
   # limitations under the License.
   #
   
   ######################################################################################################
   # 
   # If you want to configure orchestration, authorization and proxy properties, please refer to this file.
   # 
   ######################################################################################################
   
   #orchestration:
   #  name: orchestration_ds
   #  overwrite: true
   #  registry:
   #    serverLists: localhost:2181
   #    namespace: orchestration
   #
   authentication:
     username: root
     password: root
   #
   # props:
     #max.connections.size.per.query: 1
     # acceptor.size: 16  # The default value is available processors count * 2.
     # executor.size: 16  # Infinite by default.
   #  proxy.frontend.flush.threshold: 128  # The default value is 128.
   #    # LOCAL: Proxy will run with LOCAL transaction.
   #    # XA: Proxy will run with XA transaction.
   #    # BASE: Proxy will run with B.A.S.E transaction.
   #  proxy.transaction.type: LOCAL
   #  proxy.opentracing.enabled: false
   #  sql.show: false
   
   ```
   
   config-sharding.yaml
   
   ```
   #
   # Licensed to the Apache Software Foundation (ASF) under one or more
   # contributor license agreements.  See the NOTICE file distributed with
   # this work for additional information regarding copyright ownership.
   # The ASF licenses this file to You under the Apache License, Version 2.0
   # (the "License"); you may not use this file except in compliance with
   # the License.  You may obtain a copy of the License at
   #
   #     http://www.apache.org/licenses/LICENSE-2.0
   #
   # Unless required by applicable law or agreed to in writing, software
   # distributed under the License is distributed on an "AS IS" BASIS,
   # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   # See the License for the specific language governing permissions and
   # limitations under the License.
   #
   
   ######################################################################################################
   # 
   # Here you can configure the rules for the proxy.
   # This example is configuration of sharding rule.
   #   
   # If you want to use sharding, please refer to this file; 
   # if you want to use master-slave, please refer to the config-master_slave.yaml.
   # 
   ######################################################################################################
   #
   #schemaName: sharding_db
   #
   #dataSources:
   #  ds_0:
   #    url: jdbc:postgresql://127.0.0.1:5432/demo_ds_0?serverTimezone=UTC&useSSL=false
   #    username: postgres
   #    password: postgres
   #    connectionTimeoutMilliseconds: 30000
   #    idleTimeoutMilliseconds: 60000
   #    maxLifetimeMilliseconds: 1800000
   #    maxPoolSize: 50
   #  ds_1:
   #    url: jdbc:postgresql://127.0.0.1:5432/demo_ds_1?serverTimezone=UTC&useSSL=false
   #    username: postgres
   #    password: postgres
   #    connectionTimeoutMilliseconds: 30000
   #    idleTimeoutMilliseconds: 60000
   #    maxLifetimeMilliseconds: 1800000
   #    maxPoolSize: 50
   #
   #shardingRule:
   #  tables:
   #    t_order:
   #      actualDataNodes: ds_${0..1}.t_order_${0..1}
   #      tableStrategy:
   #        inline:
   #          shardingColumn: order_id
   #          algorithmExpression: t_order_${order_id % 2}
   #      keyGenerator:
   #        type: SNOWFLAKE
   #        column: order_id
   #    t_order_item:
   #      actualDataNodes: ds_${0..1}.t_order_item_${0..1}
   #      tableStrategy:
   #        inline:
   #          shardingColumn: order_id
   #          algorithmExpression: t_order_item_${order_id % 2}
   #      keyGenerator:
   #        type: SNOWFLAKE
   #        column: order_item_id
   #  bindingTables:
   #    - t_order,t_order_item
   #  defaultDatabaseStrategy:
   #    inline:
   #      shardingColumn: user_id
   #      algorithmExpression: ds_${user_id % 2}
   #  defaultTableStrategy:
   #    none:
   
   ######################################################################################################
   #
   # If you want to connect to MySQL, you should manually copy MySQL driver to lib directory.
   #
   ######################################################################################################
   
   schemaName: sharding_db
   
   dataSources:
     ds_0:
       url: jdbc:mysql://127.0.0.1:3306/test?serverTimezone=UTC&useSSL=false
       username: root
       password: root
       connectionTimeoutMilliseconds: 30000
       idleTimeoutMilliseconds: 60000
       maxLifetimeMilliseconds: 1800000
       maxPoolSize: 100
   
   shardingRule:
     tables:
       all_record:
         actualDataNodes: ds_0.all_record_${0..10}
         tableStrategy:
           inline:
             shardingColumn: card_number
             algorithmExpression: all_record_${card_number % 2}
         keyGenerator:
           type: SNOWFLAKE
           column: card_number
     #defaultDatabaseStrategy:
      # inline:
       #  shardingColumn: user_id
        # algorithmExpression: ds_${user_id % 2}
     defaultTableStrategy:
       none:
   ```
   
   and the config-master_slave.yaml and logback.xml i didnt edit it.
   
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services