You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/event-hubs/send-and-receive-events-using-data-generator.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ To complete this QuickStart, you need the following prerequisites:
20
20
21
21
- Microsoft Azure subscription. To use Azure services, including Azure Event Hubs, you need a subscription. If you don't have an existing Azure account, you can sign up for a [free trial](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
22
22
23
-
- Create Event Hubs namespace and an event hub. The first step is to use the Azure portal to create an Event Hubs namespace and an event hub in the namespace. To create a namespace and an event hub, see [QuickStart: Create an event hub using Azure portal. ](event-hubs-create.md)
23
+
- Create Event Hubs namespace and an event hub. The first step is to use the Azure portal to create an Event Hubs namespace and an event hub in the namespace. To create a namespace and an event hub, see [QuickStart: Create an event hub using Azure portal](event-hubs-create.md).
24
24
25
25
> [!NOTE]
26
26
> Data Generator for Azure Event Hubs is in Public Preview.
@@ -51,9 +51,9 @@ You could follow these steps to send events to Azure Event Hubs Data Generator:
51
51
52
52
You could send data until the permitted payload size with Data Generator. The following table talks about maximum message/payload size that you could send with Data Generator.
Copy file name to clipboardExpand all lines: articles/machine-learning/v1/how-to-access-data.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,16 +65,16 @@ Datastores currently support storage of connection information to the storage se
65
65
> [!TIP]
66
66
> **For unsupported storage solutions** (those not listed in the following table), you might encounter issues as you connect and work with your data. We suggest that you [move your data](#move-data-to-supported-azure-storage-solutions) to a supported Azure storage solution. This can also help with additional scenarios- - for example, reduction of data egress cost during ML experiments.
|[Databricks File System](/azure/databricks/data/databricks-file-system)| No authentication || ✓**| ✓ **|✓**||
78
78
79
79
* MySQL is only supported for pipeline [DataTransferStep](/python/api/azureml-pipeline-steps/azureml.pipeline.steps.datatransferstep).
80
80
* Databricks is only supported for pipeline [DatabricksStep](/python/api/azureml-pipeline-steps/azureml.pipeline.steps.databricks_step.databricksstep).
Copy file name to clipboardExpand all lines: articles/mariadb/concepts-compatibility.md
+19-19Lines changed: 19 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,30 +19,30 @@ Azure Database for MariaDB uses the community edition of MariaDB server. Therefo
19
19
20
20
The goal is to support the three most recent versions MariaDB drivers, and efforts with authors from the open source community to constantly improve the functionality and usability of MariaDB drivers continue. A list of drivers that have been tested and found to be compatible with Azure Database for MariaDB 10.2 is provided in the following table:
PHP | https://secure.php.net/downloads.php | 5.5, 5.6, 7.x | 5.3 | For PHP 7.0 connection with SSL MySQLi, add MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT in the connection string. <br> ```mysqli_real_connect($conn, $host, $username, $password, $db_name, 3306, NULL, MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT);```<br> PDO set: ```PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT``` option to false.
25
-
.NET | [MySqlConnector on GitHub](https://github.com/mysql-net/MySqlConnector) <br> [Installation package from NuGet](https://www.nuget.org/packages/MySqlConnector/) | 0.27 and after | 0.26.5 and before |
26
-
MySQL Connector/NET | [MySQL Connector/NET](https://github.com/mysql/mysql-connector-net) | 8.0, 7.0, 6.10 | | An encoding bug may cause connections to fail on some non-UTF8 Windows systems.
27
-
Node.js | [MySQLjs on GitHub](https://github.com/mysqljs/mysql/) <br> Installation package from NPM:<br> Run `npm install mysql` from NPM | 2.15 | 2.14.1 and before
28
-
GO | https://github.com/go-sql-driver/mysql/releases | 1.3, 1.4 | 1.2 and before | Use `allowNativePasswords=true` in the connection string for version 1.3. Version 1.4 contains a fix and `allowNativePasswords=true` is no longer required.
29
-
Python | https://pypi.python.org/pypi/mysql-connector-python | 1.2.3, 2.0, 2.1, 2.2 | 1.2.2 and before |
30
-
Java | https://downloads.mariadb.org/connector-java/ | 2.1, 2.0, 1.6 | 1.5.5 and before |
|PHP |https://secure.php.net/downloads.php| 5.5, 5.6, 7.x | 5.3 | For PHP 7.0 connection with SSL MySQLi, add MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT in the connection string. <br> ```mysqli_real_connect($conn, $host, $username, $password, $db_name, 3306, NULL, MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT);```<br> PDO set: ```PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT``` option to false.|
25
+
|.NET |[MySqlConnector on GitHub](https://github.com/mysql-net/MySqlConnector) <br> [Installation package from NuGet](https://www.nuget.org/packages/MySqlConnector/)| 0.27 and after | 0.26.5 and before||
26
+
|MySQL Connector/NET |[MySQL Connector/NET](https://github.com/mysql/mysql-connector-net)| 8.0, 7.0, 6.10 || An encoding bug may cause connections to fail on some non-UTF8 Windows systems.|
27
+
|Node.js |[MySQLjs on GitHub](https://github.com/mysqljs/mysql/) <br> Installation package from NPM:<br> Run `npm install mysql` from NPM | 2.15 | 2.14.1 and before||
28
+
| Go |https://github.com/go-sql-driver/mysql/releases| 1.3, 1.4 | 1.2 and before | Use `allowNativePasswords=true` in the connection string for version 1.3. Version 1.4 contains a fix and `allowNativePasswords=true` is no longer required.|
29
+
|Python |https://pypi.python.org/pypi/mysql-connector-python| 1.2.3, 2.0, 2.1, 2.2 | 1.2.2 and before||
30
+
|Java |https://downloads.mariadb.org/connector-java/| 2.1, 2.0, 1.6 | 1.5.5 and before||
31
31
32
32
## Management Tools
33
33
34
34
The compatibility advantage extends to database management tools as well. Your existing tools should continue to work with Azure Database for MariaDB, as long as the database manipulation operates within the confines of user permissions. Three common database management tools that have been tested and found to be compatible with Azure Database for MariaDB 10.2 are listed in the following table:
35
35
36
-
| Action | **MySQL Workbench 6.x and up** | **Navicat 12** | **PHPMyAdmin 4.x and up**
37
-
---|---|---|---
38
-
Create, Update, Read, Write, Delete | X | X | X
39
-
SSL Connection | X | X | X
40
-
SQL Query Auto Completion | X | X |
41
-
Import and Export Data | X | X | X
42
-
Export to Multiple Formats | X | X | X
43
-
Back up and Restore | | X |
44
-
Display Server Parameters | X | X | X
45
-
Display Client Connections | X | X | X
36
+
| Action |**MySQL Workbench 6.x and up**|**Navicat 12**|**PHPMyAdmin 4.x and up**|
0 commit comments