aws_emr_blog_v2/code/launch-cluster/cremr.py [355:366]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            cluster_parameters['Configurations'].append({
                "Classification": "hive-site",
                "Properties": {
                    "javax.jdo.option.ConnectionURL": "jdbc:mysql://" + event["ResourceProperties"][
                        "DBHostName"] + ":3306/hive?createDatabaseIfNotExist=true",
                    "javax.jdo.option.ConnectionDriverName": "org.mariadb.jdbc.Driver",
                    "javax.jdo.option.ConnectionUserName": event["ResourceProperties"]["DBUserName"],
                    "javax.jdo.option.ConnectionPassword": event["ResourceProperties"]["DBRootPassword"],
                    "hive.server2.thrift.http.port": "10001",
                    "hive.server2.thrift.http.path": "cliservice",
                    "hive.server2.transport.mode": "binary",
                    "hive.server2.allow.user.substitution": "true",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws_emr_blog_v3/code/launch-cluster/cremr.py [357:368]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        cluster_parameters['Configurations'].append({
            "Classification": "hive-site",
            "Properties": {
                "javax.jdo.option.ConnectionURL": "jdbc:mysql://" + event["ResourceProperties"][
                    "DBHostName"] + ":3306/hive?createDatabaseIfNotExist=true",
                "javax.jdo.option.ConnectionDriverName": "org.mariadb.jdbc.Driver",
                "javax.jdo.option.ConnectionUserName": event["ResourceProperties"]["DBUserName"],
                "javax.jdo.option.ConnectionPassword": event["ResourceProperties"]["DBRootPassword"],
                "hive.server2.thrift.http.port": "10001",
                "hive.server2.thrift.http.path": "cliservice",
                "hive.server2.transport.mode": "binary",
                "hive.server2.allow.user.substitution": "true",
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



