Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding solr export test #159

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@
limitations under the License.
-->
<schema name="minimal" version="1.1">
<fieldType name="string" class="solr.StrField"/>
<fieldType name="int" class="${solr.tests.IntegerFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
<fieldType name="long" class="${solr.tests.LongFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
<dynamicField name="*" type="string" indexed="true" stored="true"/>
<!-- for versioning -->
<field name="_version_" type="long" indexed="true" stored="true"/>
<field name="_root_" type="string" indexed="true" stored="true" multiValued="false" required="false"/>
<field name="id" type="string" indexed="true" stored="true"/>
<dynamicField name="*_s" type="string" indexed="true" stored="true" />
<field name="id" type="string" />
<dynamicField name="*_s" type="string" />
<uniqueKey>id</uniqueKey>
<fieldType name="string" class="solr.StrField" multiValued="false" indexed="true" stored="false" docValues="true" useDocValuesAsStored="true" sortMissingLast="true" termVectors="false" omitNorms="true" omitTermFreqAndPositions="true"/>
<!-- fieldType name="string_ngram" class="solr.BloomStrField" multiValued="false" indexed="true" stored="false" docValues="true" useDocValuesAsStored="true" sortMissingLast="true" termVectors="false" omitNorms="true" omitTermFreqAndPositions="true"/-->
</schema>
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@

<directoryFactory name="DirectoryFactory"
class="${solr.directoryFactory:solr.NRTCachingDirectoryFactory}"/>
<schemaFactory class="ClassicIndexSchemaFactory"/>
<schemaFactory class="ClassicIndexSchemaFactory"/>
<!-- codecFactory class="solr.SchemaCodecFactory"/ -->

<luceneMatchVersion>${tests.luceneMatchVersion:LATEST}</luceneMatchVersion>

Expand Down
70 changes: 70 additions & 0 deletions solr/core/src/test/org/apache/solr/search/TestCoordinatorRole.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@
import static org.apache.solr.common.params.CommonParams.OMIT_HEADER;
import static org.apache.solr.common.params.CommonParams.TRUE;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.lang.invoke.MethodHandles;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.util.Date;
import java.util.EnumSet;
import java.util.HashSet;
Expand All @@ -37,6 +43,7 @@
import org.apache.solr.client.solrj.SolrQuery;
import org.apache.solr.client.solrj.impl.CloudSolrClient;
import org.apache.solr.client.solrj.impl.Http2SolrClient;
import org.apache.solr.client.solrj.impl.JsonMapResponseParser;
import org.apache.solr.client.solrj.request.CollectionAdminRequest;
import org.apache.solr.client.solrj.request.QueryRequest;
import org.apache.solr.client.solrj.request.UpdateRequest;
Expand All @@ -51,18 +58,81 @@
import org.apache.solr.common.cloud.ZkStateReader;
import org.apache.solr.common.cloud.ZkStateReaderAccessor;
import org.apache.solr.common.params.CommonParams;
import org.apache.solr.common.params.ModifiableSolrParams;
import org.apache.solr.common.params.ShardParams;
import org.apache.solr.common.util.ExecutorUtil;
import org.apache.solr.common.util.SolrNamedThreadFactory;
import org.apache.solr.core.NodeRoles;
import org.apache.solr.embedded.JettySolrRunner;
import org.apache.solr.servlet.CoordinatorHttpSolrCall;
import org.noggit.JSONParser;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class TestCoordinatorRole extends SolrCloudTestCase {
private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());

public void testSolrExport() throws Exception {
MiniSolrCloudCluster cluster =
configureCluster(4).addConfig("conf", configset("cloud-minimal")).configure();
try {
CloudSolrClient client = cluster.getSolrClient();
String COLLECTION_NAME = "test_coll";
String SYNTHETIC_COLLECTION = CoordinatorHttpSolrCall.SYNTHETIC_COLL_PREFIX + "conf";
CollectionAdminRequest.createCollection(COLLECTION_NAME, "conf", 2, 1)
.process(cluster.getSolrClient());
cluster.waitForActiveCollection(COLLECTION_NAME, 2, 2);
Random rd = new Random();
UpdateRequest ur = new UpdateRequest();
for (int i = 0; i < 100000; i++) {
SolrInputDocument doc2 = new SolrInputDocument();
doc2.addField("id", "" + rd.nextInt());
doc2.addField("user_i18n_navigator_language_s", "en-US");
doc2.addField("user_i18n_server_language_s", "en");
doc2.addField("user_i18n_loaded_bundle_path_s", "/s/lang/messages_en.json");
doc2.addField("user_i18n_selected_language_s", "en");
ur.add(doc2);
}

ur.commit(client, COLLECTION_NAME);


JettySolrRunner node1 = cluster.getJettySolrRunner(0);

String url = node1.getBaseUrl().toString() + "/test_coll/stream?wt=json&expr=" + URLEncoder.encode("select(search(test_coll, q=\"*:*\", fl=\"*_s,id\", qt=\"/export\", sort=\"id asc\"), id, *_s)");

sendGET(url);
} finally {
cluster.shutdown();
}
}

private static void sendGET(String url) throws IOException {

URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");

int responseCode = con.getResponseCode();
System.out.println("GET Response Code :: " + responseCode);
if (responseCode == HttpURLConnection.HTTP_OK) { // success
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();

while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();

// print result
System.out.println(response.toString());
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It prints all documents.

} else {
System.out.println("GET request did not work.");
}

}

public void testSimple() throws Exception {
MiniSolrCloudCluster cluster =
configureCluster(4).addConfig("conf", configset("cloud-minimal")).configure();
Expand Down
Loading