Two Servers doing Query and Indexing for Search have red crosses for their rows.

Hi,
I have three servers under Search Application Topology:
I have done a crawl reset and awaiting these to finish. Is this correct. I have also restarted both servers with the red crosses, but still they do not show up as ticked. I did run a command a powershell command reduce CPU usage by NodeRunner and
also changed Max NodeRunner size to 200 in it's config. This is when things started to go wrong.
Any ideas?
Thanks.
John.   

Hi,
I am glad to hear that your issue is solved.
I find that setting the upper RAM usage of the Noderunner process to anything less than
500MB would prevent the Admin components from loading and therefore the topology health states would not show in Search Administration.
Setting the upper RAM usage of the Noderunner process to between 500MB and
1GB, the Admin components would (mostly) load and the topology health states would show in Search Administration, but Search Crawls would consistently fail.
Setting the upper RAM usage of the Noderunner process to anything above 1GB would allow Search to work correctly.
Here are articles about performance Issue Caused By Node Runner In SharePoint 2013, take a look at:
http://platinumdogs.me/2014/01/07/controlling-search-noderunner-memory-usage-in-sharepoint-2013/
http://www.spdeveloper.co.in/sharepoint2013/optimizing-the-configuration-of-development-farm.aspx
Best Regards,
Lisa Chen
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • Cube process stuck - finished building aggregations and indexes for the partition

    Hi friends
    My cube processing stuck up at "Finished building aggregations and indexes for the partition". How can I troubleshoot this.
    Appreciate your help. 
    Royal Thomas

    Royal,
    Your question is discussed
    here and
    here also. May be it will help you out.
    Best regards.

  • WHERE IS CREATIVE SUPPORT AND FIRMWARE FOR THEIR PRODUCTS???????

    @WHERE IS CREATIVE SUPPORT AND FIRMWARE FOR THEIR PRODUCTS??I swear I can't believe Creative is getting away with what they are doing. I can't tell you the amount of people that are infuriated with this company. Creative seems to be more concerned with releasing a hundred versions of the same type of mp3 player instead of supporting the mp3 players they've already released. I have owned multiple Creative products including soundcards and mp3 players. The lastest one- the Creative X-FI(with wireless lan) is one of the glitchiest players I've ever owned yet their last firmware update was 2 years ago- 2 YEARS!!
    !!! I've had it with this ridiculous company. They would be the envy of Apple if they could only get their customer support together instead they'd much rather watch their customer base slowly evaporate.
    Dave

    I TOTALLY agree. Not only does their product support blow, so does their customer support. I can't find anywhere to contact these people regarding my warranty return status. I have typed the RMA info in for 3 days now and all I receive is an internal error! WTF :angry:
    The contact us link is just another link back the same options on the page. SO "contact us" really means "Good luck clicking around in a circle until you give up." I really hope that they send me my product back, lord knows I can't track its status anymore.
    This will be the LAST thing I ever purchase from Creative until I've heared that they have gotten their act together.

  • Does Azure give deals for their service to business incubator companies/incubators?

    Does Azure give deals for their service to business incubator companies/incubators?

    Hi,
    You could refer to the azure enterprise information via http://azure.microsoft.com/en-us/pricing/enterprise-agreement/ .
    Also, about azure service to business incubator, I suggest you could contact the azure support to for more details:
    Please contact support team by creating a support ticket at http://www.windowsazure.com/en-us/support/contact/
    Or if that doesn't work because you don't have an active subscription you will need to contact general customer support to have them create a support ticket for you
    http://support.microsoft.com/gp/customer-service-phone-numbers?wa=wsignin1.0
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • BDBXML query and index

    Hi ,
    I have some problems in using BDBXML:
    1 how the indexes are stored in BDBXML? are they stored in B+ tree? How to encode the indexes? Does it use interzone code?
    2 the documents in BDB XML are also stored in B+ tree? How to encode the nodes which are in the document?Does it also use interzone code?
    3 when using query shell to get datas ,how to use indexes to improve the speed of query? which step happens to use indexes in query shell?
    Thanks!
    Best Wishes!
    May

    I do not understand what you mean by encode and interzone code. I will try to answer the rest of your questions.
    1 B-trees are used to store the indexes.
    2 B-trees are used to store the XML data.
    3 What query commands use the indexes depends on what indexes have been added to the container and what the query is. After adding indexes and data to the container use the dbxml shell command "queryPlan" to get a print out of what steps are performed to execute the query, including what indexes are used. If no indexes are used try adding indexes on the data your query accesses, or try altering your query to use the existing indexes (for example //b_node may make better use of an index than /a_node/b_node).
    Lauren Foutz

  • Assigning primary key and index for a table

    I have a database consisting of only one table with 10 million rows which mostly looks like this:
    RECORDDATE                     ID     CLASS     VALUE
    24-JAN-12 10.52.47.000000 AM     96     3     0
    24-JAN-12 10.52.48.000000 AM     96     10     156
    24-JAN-12 10.52.48.000000 AM     96     3     0
    24-JAN-12 10.52.48.000000 AM     96     3     0
    24-JAN-12 10.52.48.000000 AM     96     3     0
    24-JAN-12 10.52.48.000000 AM     96     3     0
    24-JAN-12 10.52.48.000000 AM     96     10     156
    24-JAN-12 10.52.48.000000 AM     96     3     0
    24-JAN-12 10.52.48.000000 AM     96     3     0
    24-JAN-12 10.52.48.000000 AM     96     6     38
    24-JAN-12 10.53.05.000000 AM     253     16     197
    24-JAN-12 10.53.06.000000 AM     98     10     150
    24-JAN-12 10.53.06.000000 AM     98     0     0
    24-JAN-12 10.53.06.000000 AM     98     4     0
    24-JAN-12 10.53.06.000000 AM     98     11     33As you can see there are several entries that look exactly the same. Currently, I don't have primary key or index for any column and have a lot of performance issues. For example this query takes more than 10 seconds to run:
    select distinct      ID
    from      scdatabase4
    where ID < 253
    order by 1Since database is not my primary job and have no background of it, I'm really confused about what to do to fix my issues. Could someone please help me in assigning primary key and index if you agree that this is the problem?!

    Execute the query below to help decide what column to index:
    SELECT COLUMN_NAME, NUM_DISTINCT, NUM_NULLS, NUM_BUCKETS, DENSITY
    FROM DBA_TAB_COL_STATISTICS
    WHERE TABLE_NAME = 'your_table_name'
    ORDER BY COLUMN_NAME;
    The important columns are:
    1) NUM_DISTINCTS: Indicates the number of distinct values. If this number is very low for a column, it indicates that this column is not a very good candidate for a B-Tree index.
    2) NUM_NULL: Indicates the number of null values for each column. A column with few null values is a good candidate for a index
    But be aware, this is not a rule, it's just a method to help decide which column will have the most benefit of index creation.

  • Reversing two system pro, mac and one for windows system.

    I divided my pro storage to two one for mac and one for windows system. Can I reverse that now? I only want to have mac system on my pro

    Open the Boot Camp Assistant in the /Applications/Utilities/ folder and return the drive to a single partition setup.
    (101315)

  • Can two users use the same ipad for their personal email?

    I have one email account assigned to my ipad and I would like to have my girl friend use it while we are traveling. How can she set up her account?

    Depends on how much you trust your girlfriend. iOS does not support multiple user accouts at this time. You are not limited to just a single email account. Your girlfriend can add her account to the mix but you must realize she can also get and read email from YOUR account too because she is using your iPad. You cannot set up a different iPad user account that only she can see. Everything is open and available for her to use.

  • Cfinclude query: return result for specific row

    I've been trying to crack this all day and I feel like if I
    just had a nudge in the right direction I might be successful.
    I have a query that returns the records for some textbooks
    that are at a specific school. I've normalized the textbook
    database so that the primary, secondary and tertiary subject
    categories are represented by the primary key of that category in
    its own table. As the query loops through the records, I want it to
    return the (varchar) subject category that goes with that
    (numerical) key in the table.
    Since Coldfusion won't allow nested cfoutput, I've tried
    using cfinclude to grab the specific name for the subject category
    that goes with the current textbook - but what I've got so far
    returns all the subjects for the school id in each row - they're
    the right subjects! but I don't want all of them, just the right
    one with the right book/record. Can anyone suggest what I need to
    do? I'm attaching the code for the main page and for one of the
    cfincludes (they're identical except for "primary", "secondary" and
    "tertiary").
    I realize I must be leaving something out but I can't figure
    out what. Thanks much in advance.

    Marianne,
    Glad I could help. To meet your requirement it seems like you
    would add one field to my schema in the Subjects table:
    parentSubjectId number (FK)
    That would simply be a recursive reference to another
    subject's ID to which it falls under. Maybe that doesn't make sense
    so here's some example data:
    subjectId, subjectName, parentSubjectId
    1, "Language Arts", null
    2, "Reading", 1
    3, "Phonics", 2
    4, "Other Subject with no parent", null
    So you can see we have built ourselves a nice hierarchy,
    where subjects which fall under other subjects can reference them.
    When you go to allow subjects to be chosen you can then query after
    each drop-down selection by refreshing the page (or via AJAX) to
    get its subjects. In this case we could also possibly do away with
    the "Ranking" field in our linking table since our hierarchy is
    captured in the relationships we now have, but for the sake of
    making our lives easy, let's keep it.
    Like let's say we select "Language arts" with a subjectId of
    1, we can get its child subjects like:
    <cfquery name="getChildSubjects"
    datasource="#Request.dsn#">
    SELECT s.subjectId, s.subjectName
    FROM subjects s
    WHERE s.parentSubjectId = <cfqueryparam
    cfsqltype="cf_sql_integer" value="#URL.subjectId#" />
    ORDER BY s.subjectName
    </cfquery>
    Obviously, modifications would need to be made to fit your
    schema, variable names, etc. but that's the general principles.
    As for how to associate textbooks to subjects you will
    actually be inserting one record into the linking table for each
    subject selected. So let's say you have a book "XSS for dummies."
    To insert the book you would add a single record in your
    textbook table, maybe something like:
    INSERT INTO textbook (
    textbookId,
    textbookName,
    <!--- Other fields go here, etc... --->
    ) VALUES (
    1,
    'XSS for dummies',
    <!--- Other fields go here, etc... --->
    Now, the user has selected three subjects: Computer Science
    (ID: 5), Internet and Web Topics (ID: 11), and Security (ID:98). We
    will thus insert three records into our linking table like:
    INSERT INTO textbookSubjects (
    textbookId,
    subjectId,
    ranking
    ) VALUES (
    1,
    5,
    'Primary'
    INSERT INTO textbookSubjects (
    textbookId,
    subjectId,
    ranking
    ) VALUES (
    1,
    11,
    'Secondary'
    INSERT INTO textbookSubjects (
    textbookId,
    subjectId,
    ranking
    ) VALUES (
    1,
    98,
    'Tertiary'
    So now when we query to get all our textbooks and related
    subjects, we have something like this:
    SELECT t.textbookId, t.textbookName, s.subjectId,
    s.subjectName, ts.ranking
    FROM textbook t
    LEFT JOIN textbookSubjects ts
    ON t.textbookId = ts.textbookId
    LEFT JOIN subject s
    ON t.subjectId = s.subjectId
    ORDER BY t.textbookName
    An example dataset might look like:
    textbookId, textbookName, subjectId, subjectName, ranking
    1, "XSS for Dummies", 5, "Computer Science", "Primary"
    1, "XSS for Dummies", 11, "Internet and Web Topics",
    "Secondary"
    1, "XSS for Dummies", 98, "Security", "Tertiary"
    2, "Some Other Book With No Subjects", null, null, null
    Now if we iterate over this dataset, you will end up
    outputting the textbook 3 times, which is probably not what you
    wanted. So to control this we can do something like:
    <cfoutput query="myBooks" group="textbookId">
    <tr>
    <td>#myBooks.textbookName#</td>
    <!--- Show all the subjects --->
    <td>
    <!--- These cfoutput tags with no group will give you all
    the values for the current group --->
    <cfoutput>
    #myBooks.subjectName#<br />
    </cfoutput>
    </td>
    </tr>
    </cfoutput>
    These examples are obviously brief but I hope they get the
    point across and help you accomplish what you're trying to
    do.

  • Change background and font for first row only?

    Hi, 
    Have a tablix in SSRS (2008R2) and would like to change the background colour and font for the first row only, is this possible and if so how would I achieve this? 
    I have followed and example on setting alternate row background colour in the properties but can't see how to do this for just the first row. 
    =IIF(RowNumber(Nothing) MOD 2,”LightGrey”, “LightBlue”)
    Thanks 

    Hello,
    The Expression uses a Modulo function to calculate every second row. In your case just compare with equal 1 for the first row:
    =IIF(RowNumber(Nothing) = 1, ”LightGrey”, “LightBlue”)
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Does anyone use Xfinity for their home Wifi?

    If so, is yours very slow? Xfinity advertises lightning speeds but I am not getting anything close to fast! Please help!!

    I have Xfinity and it works fine.  Have you called Comcast?  Are you only experiencing slow speeds on your phone or on all devices?  On my iPhone, my Wifi was a slow so I did a full reset of my internet and then reset my phone's network settings.  This seemed to speed things up.
    To reset internet:
    Unplug wireless router electricity and then follow the below steps.  If you have phone service and your modem is also used for phone, it has a battery so you have to hit the reset button, you cannot just unplug its electricity:
    Cable Modem Users
    Reset your cable modem by pressing and holding down the reset button, located on the front or back of your modem, for five seconds. If there’s no reset button, then power cycle your modem.
    To power cycle your modem:
    Shut down your computer.
    Unplug the cable modem from the electrical outlet.
    Wait 10 seconds, then plug the cable modem back into the electrical outlet.
    Unplug your router from the electrical outlet.
    Plug your router back in.
    Wait 30 seconds, then turn your computer back on.
    XFINITY Internet & Voice Modem Users
    Shut down your computer
    Find the reset button on the back of the unit.
    Use a pen or any pointed, non-metallic object to press the reset button until you see the lights on the front of the unit go off.
    Release the reset button and wait for the unit to cycle up (this may take up to five minutes).
    Unplug your router from the electrical outlet.
    Plug your router back in.
    Wait 30 seconds, then turn your computer back on.
    Reset phone's network settings.

  • Search and index for child projects

    Hello I have a merged RoboHelp 9 project.  Is there a way I can setup the project so that when the user does a search, the child projects are searched as well as the master?  Is there a way that I can used the Smart Index Wizard from the master project to produce an index which includes the child projects as well as the master.  Thank you for any help you can provide.

    Welcome to our community, Steven
    Sorry for slowness, forums seem hit or miss today.
    What you are describing is exactly how a merge should operate. All projects that are part of the merge should be properly searched and an Index would work across all projects. Because of this, I'm struggling to see a need to index everything from only the Master.
    As you likely already know, the Smart Index Wizard simply scans topics and auto-maps them to keywords in whatever project you have open.
    Sorry, but there is no way I'm aware of for the Smart Index Wizard to be used from the Master and coax it to index child projects. It's an interesting thing to consider and I would heartily encourage you to submit a Wish Form to ask for this functionality to appear in a future release. You do this using the Wish Form. (link to the Wish Form is in my sig)
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Af:query and MDS for persisting searches

    I have seen several references to persisting searches using the af:query component and MDS, but I can't find any information on how to do it. Can somebody please post some info on this topic? Is there an uptake doc or an example app that demonstrates how this is done?
    I have looked on the Oracle doc site: http://fmwdocs.us.oracle.com/doclibs/fmw/E10285_01/appsdrop.htm
    And I have searched the forums with no luck.
    I am using Build JDEVADF_MAIN_GENERIC_081208.2002.5237.
    Thanks!
    Mike

    Mike,
    You're obviously an Oracle employee with access to internal Oracle websites and builds that the rest of the world cannot see.
    You should ask on the internal Oracle forum.
    John

  • File Properties (Meta Data) and Indexing for your Portal

    Meta Edit™
    Find what you need, when you need it.
    If you manage a large network or portal, chances are that there are thousands of documents floating around that are difficult to locate due to poor file property information.
    With MetaEdit™, it’s easy to gain the control you seek and create rich document repositories you can count on.
    At it’s core, MetaEdit™ is a simple and easy-to-use software solution that allows users to quickly search, index, modify and maintain the META properties of ALL your files, such as Author, Company Name, etc…
    It’s EASY! Simply set a base folder to scan, then let MetaEdit™ do the work of gathering all the related meta information for you to efficiently manage and edit.
    Why wait? Maximize the value of your information today.
    For more detailed information and a FREE demo, visit http://www.spheric.ca/MetaEdit.aspx

    Acath?
    (1) Why would you need to change the color in HTML when you can specify it in Catalyst (Artboard Size & Color)?
    (2) I think the question was about specifying an "Image"... you can't in Catalyst, but is there any plan for beta 3?
    (3) Can you put a tranparent Artboard in Catalyst and specify a background image in the HTML?
    Thanks
    Roger

  • Two Accounts, Receive Notifications and Alerts for Only One

    I have a personal account and a work account on my phone and would like to receive alerts and notifications only if I receive mail on my personal account. Is there a way to set this up?

    bump
    I want to receive notices if I receive personal messages but not work messages.

Maybe you are looking for

  • Unique ID generation in OIM 11.1.1.5

    Dear All, I would like to generate the automatic unique ID during the user creation in OIM 11.1.1.5. Can any one please suggest me to do the customization for it and share some documents which can be helpful to me. Thanks Harry Edited by: Harry-Harry

  • I get a blank white screen when I try to play games on Club Pogo

    as stated earlier, when I go to club pogo, all I get is a blank white screen, firefox will go to site but will not load the games,

  • Lost mail after upgrading to Mountain Lion

    Hi, new to this forum, but I upgraded to Mountain Lion from the previous version and seem to have lost the last six months mail (Mar 2012 to the date I upgraded in Nov 2012).  I have found all the old mail folders, notes, etc, and imported them based

  • HT204053 how do I associate two Apple id's to one iCloud account?

    How do I associate two Apple id's to one iCloud account?

  • Can i upgrade to Mac OS 10.5

    I have a mac mini with 1 gig of memory. It is 4 or 5 years old. I just got an ipad. The ipad says i need to upgrade itunes to 10.0 itunes tells me i need to upgrade my operating system to 10.5 in order to get the updated itunes version. So when i ask