HHH-7698: In efficient LOB creations backed by streams

https://hibernate.onjira.com/browse/HHH-7698
This commit is contained in:
brmeyer 2012-10-19 17:10:16 -04:00
parent d118c24776
commit 47972c92e6
2 changed files with 170 additions and 0 deletions

View File

@ -0,0 +1,110 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* JBoss, Home of Professional Open Source
* Copyright 2012 Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
package org.hibernate.test.lob;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Blob;
import java.util.Random;
import org.hibernate.LobHelper;
import org.hibernate.Session;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.Environment;
import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase;
import org.junit.Test;
/**
* @author Brett Meyer
*/
@TestForIssue( jiraKey = "HHH-7698" )
public class JpaLargeBlobTest extends BaseCoreFunctionalTestCase {
@Override
protected Class<?>[] getAnnotatedClasses() {
return new Class<?>[] { LobEntity.class };
}
@Override
protected void configure(Configuration configuration) {
super.configure( configuration );
configuration.setProperty(Environment.USE_STREAMS_FOR_BINARY, "true");
}
@Test
public void jpaBlobStream() throws Exception {
Session session = openSession();
LobEntity o = new LobEntity();
LobHelper lh = session.getLobHelper();
LobInputStream lis = new LobInputStream();
session.getTransaction().begin();
Blob blob = lh.createBlob(lis, LobEntity.BLOB_LENGTH);
o.setBlob(blob);
// Regardless if NON_CONTEXTUAL_LOB_CREATION is set to true,
// ContextualLobCreator should use a NonContextualLobCreator to create
// a blob Proxy. If that's the case, the InputStream will not be read
// until it's persisted with the JDBC driver.
// Although HHH-7698 was about high memory consumption, this is the best
// way to test that the high memory use is being prevented.
assertFalse( lis.wasRead() );
session.persist(o);
session.getTransaction().commit();
assertTrue( lis.wasRead() );
session.close();
lis.close();
}
private class LobInputStream extends InputStream {
private boolean read = false;
private Long count = (long) 200 * 1024 * 1024;
@Override
public int read() throws IOException {
read = true;
if (count > 0) {
count--;
return new Random().nextInt();
}
return -1;
}
@Override
public int available() throws IOException {
return 1;
}
public boolean wasRead() {
return read;
}
}
}

View File

@ -0,0 +1,60 @@
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* JBoss, Home of Professional Open Source
* Copyright 2012 Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
package org.hibernate.test.lob;
import java.sql.Blob;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Lob;
/**
* @author Brett Meyer
*/
@Entity
public class LobEntity {
public static final int BLOB_LENGTH = 100000000;
private Long id;
@Id
@GeneratedValue
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@Lob
@Column(length = BLOB_LENGTH)
private Blob blob;
public Blob getBlob() {
return blob;
}
public void setBlob(Blob blob) {
this.blob = blob;
}
}