Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
Docs Required
Description
Now from code we can't detect problems, If some errors occurs in closing jdbc thin datastreamer. Now we could detect it in logs only. The main reason of this is using U.close() for streamers in SqlClientContext#disableStreaming().
You could add test to JdbcThinStreamingAbstractSelfTest and reproduce problem.
/** * @throws Exception if failed. */ @Test public void testStreamedInsertFailsOnReadOnlyMode() throws Exception { for (Ignite grid : G.allGrids()) ((IgniteEx) grid).context().cache().context().readOnlyMode(true); try { boolean failed = false; try (Connection ordinalCon = createOrdinaryConnection(); Statement selectStmt = ordinalCon.createStatement() ) { try (ResultSet rs = selectStmt.executeQuery("select count(*) from PUBLIC.Person")) { assertTrue(rs.next()); assertEquals(0, rs.getLong(1)); } try (Connection conn = createStreamedConnection(true)) { try (PreparedStatement stmt = conn.prepareStatement("insert into PUBLIC.Person(\"id\", \"name\") values (?, ?)") ) { for (int i = 1; i <= 2; i++) { stmt.setInt(1, i); stmt.setString(2, nameForId(i)); stmt.executeUpdate(); } } } catch (Exception e) { log.error("Insert failed", e); failed = true; } try (ResultSet rs = selectStmt.executeQuery("select count(*) from PUBLIC.Person")) { assertTrue(rs.next()); assertEquals("Insert should be failed!", 0, rs.getLong(1)); } } assertTrue("Insert should be failed!", failed); } finally { for (Ignite grid : G.allGrids()) ((IgniteEx) grid).context().cache().context().readOnlyMode(false); } }
Don't forget remove @Ignore annotation from JdbcThinStreamingAbstractSelfTest#testStreamedInsertFailsOnReadOnlyMode() test!
Attachments
Issue Links
- is related to
-
IGNITE-11256 Implement read-only mode for grid
- Resolved